home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / GameKit / Apps / HighScoreServer / Runner.c < prev    next >
C/C++ Source or Header  |  1995-06-12  |  189b  |  10 lines

  1. /*  This program restarts the server if it dies.  */
  2. /*  Use it to run the server itself.  */
  3.  
  4. #include <stdlib.h>
  5.  
  6. int main()
  7. {
  8.     while (1) system("/usr/local/games/highscores/serverd");
  9. }
  10.